Python Checker
A maintainable Python code checker for Sublime Text 3
Details
Installs
- Total 86K
 - Win 48K
 - Mac 16K
 - Linux 22K
 
| Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 1 | 2 | 1 | 1 | 1 | 2 | 2 | 5 | 1 | 0 | 1 | 1 | 2 | 1 | 1 | 6 | 0 | 4 | 1 | 3 | 3 | 0 | 3 | 3 | 1 | 2 | 0 | 1 | 0 | 2 | 0 | 2 | 4 | 3 | 1 | 3 | 2 | 0 | 1 | 5 | 2 | 1 | 0 | 2 | 2 | 0 | 
| Mac | 0 | 0 | 0 | 0 | 2 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 | 1 | 0 | 1 | 2 | 
| Linux | 0 | 2 | 3 | 0 | 0 | 0 | 1 | 2 | 2 | 0 | 1 | 1 | 1 | 3 | 1 | 0 | 1 | 0 | 2 | 3 | 2 | 2 | 1 | 0 | 0 | 2 | 1 | 0 | 2 | 1 | 1 | 1 | 1 | 1 | 2 | 1 | 0 | 0 | 1 | 2 | 1 | 2 | 2 | 2 | 2 | 4 | 
Readme
- Source
 - raw.githubusercontent.com
 
Python Checker
A maintainable Python code checker for Sublime Text 3

Once the plugin is installed, it will highlight common problems in your Python code.
Internally it relies on the wonderful pyflakes and pep8 packages.
Installation
Use Package Control.
Python version
By default Python Checker will use the version of Python that came with Sublime Text 3. This currently means Python 3 and can result in problems like undefined name 'unicode' being reported. If you want to use a different version, set the python_interpreter_path option in your project settings:
# <project name>.sublime-project
{
    "settings": {
        "python_interpreter_path": "/usr/bin/python"
    }
}
This is compatible with other plugins including SublimeJEDI.
PEP8 checks
Use the standard pep8 configuration files to control the behaviour including skipping some checks. An example project configration might look like this:
# setup.cfg or tox.ini
[pep8]
ignore = E501,W191
max-line-length = 120